home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / basic / pbtlte12.zip / CONSTANT.INC < prev    next >
Text File  |  1991-07-17  |  1KB  |  51 lines

  1. '┌────────────────────────────────────────────────────────────────────────┐
  2. '│                                                                        │
  3. '│                       Constants for PBTools:Lite                       │
  4. '│                                                                        │
  5. '│              use $INCLUDE "CONSTANT.INC" in your programs              │
  6. '│                                                                        │
  7. '│                  CopyRight 1991 by Dave Navarro, Jr.                   │
  8. '│                                                                        │
  9. '└────────────────────────────────────────────────────────────────────────┘
  10.  
  11. 'Register Constants
  12.  
  13. %FLAGS        = 0
  14. %AX           = 1
  15. %BX           = 2
  16. %CX           = 3
  17. %DX           = 4
  18. %SI           = 5
  19. %DI           = 6
  20. %BP           = 7
  21. %DS           = 8
  22. %ES           = 9
  23.  
  24. 'Interrupt Constants
  25.  
  26. %BiosVideo    = &H10
  27. %BiosKeyB     = &H16
  28. %BiosPrinter  = &H17
  29. %BiosClock    = &H1A
  30. %MSDOS        = &H21
  31. %MouseDriver  = &H33
  32.  
  33. 'Color Constants
  34.  
  35. %Black        =  0
  36. %Blue         =  1
  37. %Green        =  2
  38. %Cyan         =  3
  39. %Red          =  4
  40. %Magenta      =  5
  41. %Brown        =  6
  42. %White        =  7
  43. %Gray         =  8
  44. %LightBlue    =  9
  45. %LightGreen   = 10
  46. %LightCyan    = 11
  47. %LightRed     = 12
  48. %LightMagenta    = 13
  49. %Yellow       = 14
  50. %BrightWhite    = 15
  51.